iT邦幫忙

2022 iThome 鐵人賽

DAY 7
0

第七天

MSSQL 語法

接下來要建table,做一些題目

create table employee (
	empID decimal(5) primary key,
	emp_name varchar(50) not null,
	hiredate date not null,
	salary int not null,
	deptID decimal(5) not null,
	title varchar(30) not null,
	mgrID decimal(5) 

);
create table department(
	deptID decimal(5) primary key,
	deptname varchar(30) not null,
	cityID char(3) not null 
);
create table city(
	cityID char(3) primary key,
	city_name varchar(30) not null,

);
create table grade(
	job_level char(1) primary key,
	lowest int not null,
	highest int not null

);
SELECT [empID]
      ,[emp_name]
      ,[hiredate]
      ,[salary]
      ,[deptID]
      ,[title]
      ,[mgrno]
  FROM [Testing].[dbo].[emp]

https://ithelp.ithome.com.tw/upload/images/20220923/20151606y9UKc5MYZv.png

SELECT [deptID]
      ,[deptname]
      ,[cityID]
  FROM [Testing].[dbo].[dept]

https://ithelp.ithome.com.tw/upload/images/20220923/20151606XXBR4jv5OK.png

SELECT [job_level]
      ,[lowest]
      ,[highest]
  FROM [Testing].[dbo].[grade]

https://ithelp.ithome.com.tw/upload/images/20220923/20151606nLcNr2oSwB.png


上一篇
MS SQL Part 5 (Join)
下一篇
MS SQL Part 7
系列文
了解Data Science30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言